home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / tclX-6.4 / help / lists / concat < prev    next >
Encoding:
Text File  |  1992-12-17  |  382 b   |  12 lines

  1.           concat arg ?arg ...?
  2.                This  command  treats  each  argument  as  a  list  and
  3.                concatenates  them  into a single list.  It permits any
  4.                number of arguments.  For example, the command
  5.  
  6.                     concat a b {c d e} {f {g h}}
  7.  
  8.                will return
  9.  
  10.                     a b c d e f {g h}
  11.                as its result.
  12.